.profile-card {
  max-width: 350px;
  height: 370px; /* tinggi fix */
  margin: 30px auto;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all 0.3s ease;

  /* Flexbox center */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertikal center */
  align-items: center; /* horizontal center */
  text-align: center;
}

.profile-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center top; /* biar tidak kepotong kepala */
  display: block;
  margin: 0 auto 15px;

  /* Tambahan border + shadow */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* shadow halus */
}

.profile-card h5 {
  font-weight: 600;
  font-size: 1.1rem;
  white-space: nowrap; /* tetap satu baris */
  overflow: hidden; /* sembunyikan kelebihan */
  text-overflow: ellipsis; /* kasih ... kalau kepanjangan */
}

.profile-card p {
  margin-bottom: 5px;
  color: #6c757d;
}
.profile-card .social a {
  color: #333;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}
/* Hover Effects */
.profile-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.profile-card:hover img {
  transform: scale(1.05);
}
.profile-card .social a:hover {
  color: #e4405f; /* Instagram pink */
}
